home *** CD-ROM | disk | FTP | other *** search
/ .net 2000 September / Net75b.iso / pc / Virgin ISP Software (PC) / IE5_16.EXE / IE5_16.dxr / 00003.ls < prev    next >
Encoding:
Text File  |  1999-07-16  |  636 b   |  22 lines

  1. on mouseEnter
  2.   puppetSprite(the currentSpriteNum, 1)
  3.   set the cursor of sprite the currentSpriteNum to [member "PointerCursor", member "PointerCursorMask"]
  4.   set the blend of sprite the currentSpriteNum to 100
  5.   set the visible of sprite 16 to 1
  6.   set the ink of sprite (the currentSpriteNum + 9) to 3
  7.   updateStage()
  8. end
  9.  
  10. on mouseLeave
  11.   puppetSprite(the currentSpriteNum, 0)
  12.   updateStage()
  13.   set the cursor of sprite the currentSpriteNum to 0
  14.   set the visible of sprite 16 to 0
  15.   set the ink of sprite (the currentSpriteNum + 9) to 32
  16. end
  17.  
  18. on mouseUp
  19.   set myPath to the moviePath
  20.   open(myPath & "readme.txt", "Notepad.exe")
  21. end
  22.